blob: 26c2944bf7f8b7587077e423dcd3278a3da50977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import { Suspense } from "react"
import { Metadata } from "next"
import { JoinForm } from "@/components/signup/join-form"
import { JoinFormSkeleton } from "@/components/signup/join-form-skeleton"
// (Optional) If Next.js attempts to statically optimize this page and you need full runtime
// behavior for query params, you may also need:
// export const dynamic = "force-dynamic"
export const metadata: Metadata = {
title: "Partner Portal",
description: "Authentication forms built using the components.",
}
export default function SignUpPage() {
return (
<Suspense fallback={<JoinFormSkeleton/>}>
<JoinForm />
</Suspense>
)
}
|